На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:
['æfluəns]
общая лексика
изобилие
наплыв
приток
существительное
общая лексика
изобилие
обилие
богатство
приток
стечение
наплыв
наплыв, стечение
['æfluənt]
общая лексика
изобильный
прилагательное
общая лексика
изобильный
обильный
богатый
свободно текущий
приливающий
притекающий
полноводный
синоним
существительное
['æfluənt]
общая лексика
приток (реки)
приток (реки)
гидрология
подпор (реки)
подпор (реки)
собирательное выражение
употр. с гл. во мн. ч. богачи
богатеи (the affluent)
In computing, vectored I/O, also known as scatter/gather I/O, is a method of input and output by which a single procedure call sequentially reads data from multiple buffers and writes it to a single data stream, or reads data from a data stream and writes it to multiple buffers, as defined in a vector of buffers. Scatter/gather refers to the process of gathering data from, or scattering data into, the given set of buffers. Vectored I/O can operate synchronously or asynchronously. The main reasons for using vectored I/O are efficiency and convenience.
Vectored I/O has several potential uses:
Standards bodies document the applicable functions readv
and writev
in POSIX 1003.1-2001 and the Single UNIX Specification version 2. The Windows API has analogous functions ReadFileScatter
and WriteFileGather
; however, unlike the POSIX functions, they require the alignment of each buffer on a memory page. Winsock provides separate WSASend
and WSARecv
functions without this requirement.
While working directly with a vector of buffers can be significantly harder than working with a single buffer, using higher-level APIs for working efficiently can mitigate the difficulties.